Show Angular and Docular Docs
When true, will include a group configuration for Docular when parsing documentation and rendering. The Docular group configuration has sections for general docs for it's use as well as documention for the Docular sources code.
When true, will include a group configuration for Angular when parsing documentation and rendering. The Angular group configuration has sections for overview, tutorial, dev guide, and the Angular API.
Here is the grunt configuration for the Docular task from the grunt-docular plugin:
module.exports = function(grunt) { // Project configuration. grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), docular: { groups: [], showDocularDocs: true, showAngularDocs: true, docular_partial_home: 'home.html', analytics: { account: 'UA-40646426-1', domainName: 'grunt-docular.com' }, discussions: { shortName: 'johndavidfive', url: 'http://johndavidfive.com', dev: false } } }); // Load the plugin that provides the "docular" tasks. grunt.loadNpmTasks('grunt-docular'); // Default task(s). grunt.registerTask('default', ['docular']); };
This website (grunt-docular.com) has both the showAngularDocs
and showDocularDocs
flags set to true. This allows you to view all the documentation for these two groups. This site has these set to true so you can see the difference between two documentation groups.